home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / termutil.0 / termutil / termutils-2.0 / configure.in < prev    next >
Encoding:
Text File  |  1995-11-30  |  550 b   |  25 lines

  1. dnl Process this file with autoconf to produce a configure script.
  2. AC_INIT(tput.c)
  3. AC_CONFIG_HEADER(config.h)
  4. AC_ARG_PROGRAM
  5. AC_SUBST(ALLOCA) dnl Bogus thing for automake.
  6.  
  7. dnl Checks for programs.
  8. AC_PROG_CC
  9. AC_PROG_RANLIB
  10. AC_PROG_INSTALL
  11.  
  12. dnl Checks for header files.
  13. AC_HEADER_STDC
  14. AC_CHECK_HEADERS(string.h termios.h sgtty.h unistd.h)
  15.  
  16. dnl Checks for typedefs, structures, and compiler characteristics.
  17. AC_C_CONST
  18. AC_TYPE_SIGNAL
  19.  
  20. dnl Checks for library functions.
  21. AC_CHECK_FUNCS(tcgetattr strerror)
  22. AC_REPLACE_FUNCS(bsearch)
  23.  
  24. AC_OUTPUT(Makefile)
  25.